home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bc.postrm < prev    next >
Text File  |  2009-09-20  |  605b  |  26 lines

  1. #! /bin/sh
  2. #
  3. # This is the postrm script for the Debian GNU/Linux bc package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6. # Previous versions written by Bill Mitchell, Austin Donnelly and James Troup
  7.  
  8. set -e
  9.  
  10. # Automatically added by dh_installmenu
  11. if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi
  12. # End automatically added section
  13.  
  14.  
  15. case "$1" in
  16.     purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  17. #     if [ -x /usr/bin/update-menus ]
  18. #     then
  19. #         update-menus
  20. #     fi
  21.         ;;
  22.     *)
  23.     echo "postrm called with unknown argument \`$1'" >&2
  24.     ;;
  25. esac
  26.